home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / tools / lu62 / port / bindf.h < prev    next >
Text File  |  1996-07-10  |  1KB  |  25 lines

  1. /**********************************************************************
  2. *                        BINDF                                        *
  3. **********************************************************************/
  4.  struct bindf {
  5.              char hdr[3];    /* x'810685'-BINDF hdr           */
  6.              char sense[2];  /* sense bytes from rsp(BIND)    */
  7.              unsigned why:8; /* code of unsuccess             */
  8.              char key;       /* x'07'-netaddr. pair
  9.                                 x'06'-names pair              */
  10.              union {
  11.                   struct {
  12.                          short plu;  /* PLU netaddress        */
  13.                          short slu;  /* SLU netaddress        */
  14.                          } netad;
  15.                   struct {
  16.                          char typep;    /* x'F3'-LU           */
  17.                          char plulen;   /* PLU name length    */
  18.                          char plunm[8]; /* PLU name           */
  19.                          char types;    /* x'F3'-LU           */
  20.                          char slulen;   /* SLU name length    */
  21.                          char slunm[8]; /* SLU name           */
  22.                          } names;
  23.                    } adnm;
  24.           };
  25.